I have an editable multi-value field that I would like to somehow convert to a select/options/array object in JavaScript. Here is what I am trying to do: The user selects a value from a listbox on the web. I grab that value with no problem. I can grab the selectedIndex property also. I then want to take the selectedIndex of that listbox and find the same selectedIndex in the multi-value field. However, I need to convert to a select/options/array object. This is to be done if this field has one entry to many entries. Thanks! Dan
Go back